func github.com/andybalholm/brotli.backwardMatchLength

11 uses

	github.com/andybalholm/brotli (current package)
		backward_references_hq.go#L486: 				max_match_len = backwardMatchLength(&match)
		backward_references_hq.go#L588: 		if num_matches[i] == 1 && backwardMatchLength(&matches[cur_match_pos-1]) > max_zopfli_len {
		backward_references_hq.go#L589: 			skip = brotli_max_size_t(backwardMatchLength(&matches[cur_match_pos-1]), skip)
		backward_references_hq.go#L650: 		if num_matches > 0 && backwardMatchLength(&matches[num_matches-1]) > max_zopfli_len {
		backward_references_hq.go#L659: 		if num_matches == 1 && backwardMatchLength(&matches[0]) > max_zopfli_len {
		backward_references_hq.go#L660: 			skip = brotli_max_size_t(backwardMatchLength(&matches[0]), skip)
		backward_references_hq.go#L745: 			assert(backwardMatchLength(&matches[j]) <= backwardMatchLength(&matches[j+1]))
		backward_references_hq.go#L750: 			var match_len uint = backwardMatchLength(&matches[cur_match_end-1])
		hash.go#L212: func backwardMatchLength(self *backwardMatch) uint {
		hash.go#L221: 		return backwardMatchLength(self)